home *** CD-ROM | disk | FTP | other *** search
/ Scene Storm / Scene Storm - Volume 1.iso / coding / c / northc / example2.lzh / mini-hello / Makefile < prev    next >
Makefile  |  1990-08-30  |  351b  |  17 lines

  1. # Makefile for small hello world
  2. #
  3. #  Call blink explicitly so that we can use our special startup routines
  4. # in crt1.o
  5. #
  6. hello: crt1.o hello.o
  7.     blink crt1.o hello.o LIB clibs:libc.a SMALLCODE SMALLDATA
  8.  
  9. #
  10. # Use the optimiser for all 'C' compilations
  11. #
  12. .c.o:
  13.     NorthC -Ot:$*.s $*.c
  14.     Top t:$*.s t:$*.s1
  15.     a68k -q -g -O$*.o t:$*.s1
  16.     delete t:$*.s t:$*.s1
  17.